home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 25 / AMIGAplus Sonderheft 25 (2000)(Falke)(DE)(Track 1 of 4)[!].iso / scripts / ViewHTML < prev   
AmigaDOS Script File  |  2000-05-08  |  3KB  |  120 lines

  1. .key FILE/A,GUIDE/S,HTML/S,JPG/S,MPG/S,MP3/S
  2. if not exists env:quickstarted
  3. Echo "Die CD ist nicht eingerichtet!*nBitte zuerst Quickstart ausführen!"
  4. wait 2
  5. quit
  6. endif
  7. stack 500000
  8. ;lab check
  9. ;if not exists env:metaconfig
  10. ;echo "Starte Prefs..."
  11. ;EXEXUCTE APCD:Scripts/Prefs
  12. ;skip back check
  13. ;endif
  14. if <HTML>
  15.     if not exists env:APCDHTML
  16.                 set x1 `APCD:c/requestchoice "Amiga+ (C)" "Browser nicht gewählt. Jetzt wählen?" Ja Nein Abruch`
  17.         if $x1 eq 1
  18.             execute APCD:scripts/html
  19.             ;^^^^^^
  20.             ;Don`t skip back from here!
  21.             cd "`list "$APCDHTML" LFORMAT=%F`" ;Changedir!
  22.             "$APCDHTML" "FILE:///<FILE>"
  23.         endif
  24.         if $x1 eq 2
  25.             CD APCD:A+Tools/Browser/IBrowse/
  26.             APCD:A+Tools/Browser/IBrowse/IBrowse "file:///<FILE>"
  27.             if fail
  28.                 APCD:C/requestchoice "Amiga+ (C)" "Browser ließ sich nicht starten!" "Ende" >NIL:
  29.                 quit
  30.             endif
  31.             ;quit
  32.         endif
  33.         quit
  34.     endif
  35. cd "`list "$APCDHTML" LFORMAT=%F`" ;Changedir!
  36. "$APCDHTML" "file:///<file>"
  37. ;quit
  38. endif
  39. if <GUIDE>
  40. APCD:A+Tools/Guide/Amigaguide "<FILE>"
  41. ;quit
  42. endif
  43. IF <JPG>
  44.     if not exists env:APCDJpg
  45.                 set x1 `APCD:c/requestchoice "Amiga+ (C)" "JPG-Anzeiger nicht gewählt. Jetzt wählen?" Ja Nein Abruch`
  46.         if $x1 eq 1
  47.             execute APCD:scripts/JPG
  48.             ;^^^^^^
  49.             ;Don`t skip back from here!
  50.             cd "`list "$APCDJpg" LFORMAT=%F`" ;Changedir!
  51.             "$APCDjpg" "<FILE>" >NIL:
  52.         endif
  53.         if $x1 eq 2
  54.             cd APCD:A+Tools/JPG
  55.             APCD:A+Tools/jpg/fjpeg "<FILE>" >NIL:
  56.             if fail
  57.                 APCD:C/requestchoice "Amiga+ (C)" "Anzeiger ließ sich nicht starten!" "Ende" >NIL:
  58.                 quit
  59.             endif
  60.             ;quit
  61.         endif
  62.         quit
  63.     endif
  64. cd "`list "$APCDjpg" LFORMAT=%F`" ;Changedir!
  65. "$APCDJpg" "<file>" >NIL:
  66. ;quit
  67. ENDIF
  68.  
  69. If <MPG>
  70. if not exists env:APCDMpg
  71.                 set x1 `APCD:c/requestchoice "Amiga+ (C)" "MPG-Anzeiger nicht gewählt. Jetzt wählen?" Ja Nein Abruch`
  72.         if $x1 eq 1
  73.             execute APCD:scripts/MPG
  74.             ;^^^^^^
  75.             ;Don`t skip back from here!
  76.             cd "`list "$APCDMpg" LFORMAT=%F`" ;Changedir!
  77.             "$APCDMpg" $MPGARGS "<FILE>" >NIL:
  78.         endif
  79.         if $x1 eq 2
  80.             cd APCD:A+Tools/mpg/frogger
  81.             APCD:A+Tools/mpg/frogger "<FILE>" fullscreen >NIL:
  82.             if fail
  83.                 APCD:C/requestchoice "Amiga+ (C)" "Anzeiger ließ sich nicht starten!" "Ende" >NIL:
  84.                 quit
  85.             endif
  86.             ;quit
  87.         endif
  88.         quit
  89.     endif
  90. cd "`list "$APCDmpg" LFORMAT=%F`" ;Changedir!
  91. $APCDmpg $MPGARGS "<file>" >NIL:
  92. ;quit
  93.  
  94. endif
  95.  
  96. If <MP3>
  97. if not exists env:APCDMP3
  98.                 set x1 `APCD:c/requestchoice "Amiga+ (C)" "MP3 Abspieler nicht gewählt. Jetzt wählen?" Ja Nein Abruch`
  99.         if $x1 eq 1
  100.             execute APCD:scripts/MP3
  101.             ;^^^^^^
  102.             ;Don`t skip back from here!
  103.             cd "`list "$APCDMP3" LFORMAT=%F`" ;Changedir!
  104.             "$APCDMP3" $MP3ARGS "<FILE>" >NIL:
  105.         endif
  106.         if $x1 eq 2
  107.             cd APCD:A+Tools/mp3/
  108.             APCD:A+Tools/mp3/MPEGA -F27000 -p5 -t30000 -w -b300 "<FILE>" >NIL:
  109.             if fail
  110.                 APCD:C/requestchoice "Amiga+ (C)" "Abspieler ließ sich nicht starten!" "Ende" >NIL:
  111.                 quit
  112.             endif
  113.             ;quit
  114.         endif
  115.         quit
  116.     endif
  117. cd "`list "$APCDMP3" LFORMAT=%F`" ;Changedir!
  118. $APCDMP3 $MP3ARGS "<file>" >NIL:
  119. ;quit
  120. endif